home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / CHIP / Porady / Srodowisko PHP-MySQL / WAMP5 1.3 / wamp5_1.3.exe / {app} / Apache / include / httpd.h < prev    next >
C/C++ Source or Header  |  2004-05-07  |  46KB  |  1,217 lines

  1. /* Copyright 1999-2004 The Apache Software Foundation
  2.  *
  3.  * Licensed under the Apache License, Version 2.0 (the "License");
  4.  * you may not use this file except in compliance with the License.
  5.  * You may obtain a copy of the License at
  6.  *
  7.  *     http://www.apache.org/licenses/LICENSE-2.0
  8.  *
  9.  * Unless required by applicable law or agreed to in writing, software
  10.  * distributed under the License is distributed on an "AS IS" BASIS,
  11.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12.  * See the License for the specific language governing permissions and
  13.  * limitations under the License.
  14.  */
  15.  
  16. #ifndef APACHE_HTTPD_H
  17. #define APACHE_HTTPD_H
  18.  
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif
  22.  
  23. /*
  24.  * httpd.h: header for simple (ha! not anymore) http daemon
  25.  */
  26.  
  27. /* Headers in which EVERYONE has an interest... */
  28.  
  29. #include "ap_config.h"
  30. #include "ap_alloc.h"
  31. #include "buff.h"
  32. #include "ap.h"
  33.  
  34. /* ----------------------------- config dir ------------------------------ */
  35.  
  36. /* Define this to be the default server home dir. Most things later in this
  37.  * file with a relative pathname will have this added.
  38.  */
  39. #ifndef HTTPD_ROOT
  40. #ifdef OS2
  41. /* Set default for OS/2 file system */
  42. #define HTTPD_ROOT "/os2httpd"
  43. #elif defined(WIN32)
  44. /* Set default for Windows file system */
  45. #define HTTPD_ROOT "/apache"
  46. #elif defined(BEOS) || defined(BONE)
  47. #define HTTPD_ROOT "/boot/home/apache"
  48. #elif defined(NETWARE)
  49. #define HTTPD_ROOT "sys:/apache"
  50. #else
  51. #define HTTPD_ROOT "/usr/local/apache"
  52. #endif
  53. #endif /* HTTPD_ROOT */
  54.  
  55. /* Default location of documents.  Can be overridden by the DocumentRoot
  56.  * directive.
  57.  */
  58. #ifndef DOCUMENT_LOCATION
  59. #ifdef OS2
  60. /* Set default for OS/2 file system */
  61. #define DOCUMENT_LOCATION  HTTPD_ROOT "/docs"
  62. #else
  63. #define DOCUMENT_LOCATION  HTTPD_ROOT "/htdocs"
  64. #endif
  65. #endif /* DOCUMENT_LOCATION */
  66.  
  67. /* Max. number of dynamically loaded modules */
  68. #ifndef DYNAMIC_MODULE_LIMIT
  69. #define DYNAMIC_MODULE_LIMIT 64
  70. #endif
  71.  
  72. /* Default administrator's address */
  73. #define DEFAULT_ADMIN "[no address given]"
  74.  
  75. /* The target name of the installed Apache */
  76. #ifndef TARGET
  77. #define TARGET "httpd"
  78. #endif
  79.  
  80. /* 
  81.  * --------- You shouldn't have to edit anything below this line ----------
  82.  *
  83.  * Any modifications to any defaults not defined above should be done in the 
  84.  * respective config. file. 
  85.  *
  86.  */
  87.  
  88.  
  89. /* -- Internal representation for a HTTP protocol number, e.g., HTTP/1.1 -- */
  90.  
  91. #define HTTP_VERSION(major,minor) (1000*(major)+(minor))
  92. #define HTTP_VERSION_MAJOR(number) ((number)/1000)
  93. #define HTTP_VERSION_MINOR(number) ((number)%1000)
  94.  
  95.  
  96. /* -------------- Port number for server running standalone --------------- */
  97.  
  98. #define DEFAULT_HTTP_PORT    80
  99. #define DEFAULT_HTTPS_PORT    443
  100. #define ap_is_default_port(port,r)    ((port) == ap_default_port(r))
  101. #ifdef NETWARE
  102. #define ap_http_method(r) ap_os_http_method((void*)r)
  103. #define ap_default_port(r) ap_os_default_port((void*)r)
  104. #else
  105. #define ap_http_method(r)    "http"
  106. #define ap_default_port(r)    DEFAULT_HTTP_PORT
  107. #endif
  108.  
  109. /* --------- Default user name and group name running standalone ---------- */
  110. /* --- These may be specified as numbers by placing a # before a number --- */
  111.  
  112. #ifndef DEFAULT_USER
  113. #define DEFAULT_USER "#-1"
  114. #endif
  115. #ifndef DEFAULT_GROUP
  116. #define DEFAULT_GROUP "#-1"
  117. #endif
  118.  
  119. #ifndef DEFAULT_ERRORLOG
  120. #if defined(OS2) || defined(WIN32)
  121. #define DEFAULT_ERRORLOG "logs/error.log"
  122. #else
  123. #define DEFAULT_ERRORLOG "logs/error_log"
  124. #endif
  125. #endif /* DEFAULT_ERRORLOG */
  126.  
  127. #ifndef DEFAULT_PIDLOG
  128. #define DEFAULT_PIDLOG "logs/httpd.pid"
  129. #endif
  130. #ifndef DEFAULT_SCOREBOARD
  131. #define DEFAULT_SCOREBOARD "logs/apache_runtime_status"
  132. #endif
  133. #ifndef DEFAULT_LOCKFILE
  134. #define DEFAULT_LOCKFILE "logs/accept.lock"
  135. #endif
  136.  
  137. /* Define this to be what your HTML directory content files are called */
  138. #ifndef DEFAULT_INDEX
  139. #define DEFAULT_INDEX "index.html"
  140. #endif
  141.  
  142. /* Define this to 1 if you want fancy indexing, 0 otherwise */
  143. #ifndef DEFAULT_INDEXING
  144. #define DEFAULT_INDEXING 0
  145. #endif
  146.  
  147. /* Define this to be what type you'd like returned for files with unknown */
  148. /* suffixes.  MUST be all lower case. */
  149. #ifndef DEFAULT_CONTENT_TYPE
  150. #define DEFAULT_CONTENT_TYPE "text/plain"
  151. #endif
  152.  
  153. /* Define this to be what your per-directory security files are called */
  154. #ifndef DEFAULT_ACCESS_FNAME
  155. #ifdef OS2
  156. /* Set default for OS/2 file system */
  157. #define DEFAULT_ACCESS_FNAME "htaccess"
  158. #else
  159. #define DEFAULT_ACCESS_FNAME ".htaccess"
  160. #endif
  161. #endif /* DEFAULT_ACCESS_FNAME */
  162.  
  163. /* The name of the server config file */
  164. #ifndef SERVER_CONFIG_FILE
  165. #define SERVER_CONFIG_FILE "conf/httpd.conf"
  166. #endif
  167.  
  168. /* The name of the document config file */
  169. #ifndef RESOURCE_CONFIG_FILE
  170. #define RESOURCE_CONFIG_FILE "conf/srm.conf"
  171. #endif
  172.  
  173. /* The name of the MIME types file */
  174. #ifndef TYPES_CONFIG_FILE
  175. #define TYPES_CONFIG_FILE "conf/mime.types"
  176. #endif
  177.  
  178. /* The name of the access file */
  179. #ifndef ACCESS_CONFIG_FILE
  180. #define ACCESS_CONFIG_FILE "conf/access.conf"
  181. #endif
  182.  
  183. /* Whether we should enable rfc1413 identity checking */
  184. #ifndef DEFAULT_RFC1413
  185. #define DEFAULT_RFC1413 0
  186. #endif
  187. /* The default directory in user's home dir */
  188. #ifndef DEFAULT_USER_DIR
  189. #define DEFAULT_USER_DIR "public_html"
  190. #endif
  191.  
  192. /* The default path for CGI scripts if none is currently set */
  193. #ifndef DEFAULT_PATH
  194. #define DEFAULT_PATH "/bin:/usr/bin:/usr/ucb:/usr/bsd:/usr/local/bin"
  195. #endif
  196.  
  197. /* The path to the shell interpreter, for parsed docs */
  198. #ifndef SHELL_PATH
  199. #if defined(OS2) || defined(WIN32)
  200. /* Set default for OS/2 and Windows file system */
  201. #define SHELL_PATH "CMD.EXE"
  202. #else
  203. #define SHELL_PATH "/bin/sh"
  204. #endif
  205. #endif /* SHELL_PATH */
  206.  
  207. /* The path to the suExec wrapper, can be overridden in Configuration */
  208. #ifndef SUEXEC_BIN
  209. #define SUEXEC_BIN  HTTPD_ROOT "/bin/suexec"
  210. #endif
  211.  
  212. /* The default string lengths */
  213. #define MAX_STRING_LEN HUGE_STRING_LEN
  214. #define HUGE_STRING_LEN 8192
  215.  
  216. /* The timeout for waiting for messages */
  217. #ifndef DEFAULT_TIMEOUT
  218. #define DEFAULT_TIMEOUT 300
  219. #endif
  220.  
  221. /* The timeout for waiting for keepalive timeout until next request */
  222. #ifndef DEFAULT_KEEPALIVE_TIMEOUT
  223. #define DEFAULT_KEEPALIVE_TIMEOUT 15
  224. #endif
  225.  
  226. /* The number of requests to entertain per connection */
  227. #ifndef DEFAULT_KEEPALIVE
  228. #define DEFAULT_KEEPALIVE 100
  229. #endif
  230.  
  231. /* The size of the server's internal read-write buffers */
  232. #define IOBUFSIZE 8192
  233.  
  234. /* The max number of regex captures that can be expanded by ap_pregsub */
  235. #define AP_MAX_REG_MATCH 10
  236.  
  237. /* Number of servers to spawn off by default --- also, if fewer than
  238.  * this free when the caretaker checks, it will spawn more.
  239.  */
  240. #ifndef DEFAULT_START_DAEMON
  241. #define DEFAULT_START_DAEMON 5
  242. #endif
  243.  
  244. /* Maximum number of *free* server processes --- more than this, and
  245.  * they will die off.
  246.  */
  247.  
  248. #ifndef DEFAULT_MAX_FREE_DAEMON
  249. #define DEFAULT_MAX_FREE_DAEMON 10
  250. #endif
  251.  
  252. /* Minimum --- fewer than this, and more will be created */
  253.  
  254. #ifndef DEFAULT_MIN_FREE_DAEMON
  255. #define DEFAULT_MIN_FREE_DAEMON 5
  256. #endif
  257.  
  258. /* Limit on the total --- clients will be locked out if more servers than
  259.  * this are needed.  It is intended solely to keep the server from crashing
  260.  * when things get out of hand.
  261.  *
  262.  * We keep a hard maximum number of servers, for two reasons --- first off,
  263.  * in case something goes seriously wrong, we want to stop the fork bomb
  264.  * short of actually crashing the machine we're running on by filling some
  265.  * kernel table.  Secondly, it keeps the size of the scoreboard file small
  266.  * enough that we can read the whole thing without worrying too much about
  267.  * the overhead.
  268.  */
  269. #ifndef HARD_SERVER_LIMIT
  270. #ifdef WIN32
  271. #define HARD_SERVER_LIMIT 1024
  272. #elif defined(NETWARE)
  273. #define HARD_SERVER_LIMIT 2048
  274. #else
  275. #define HARD_SERVER_LIMIT 256
  276. #endif
  277. #endif
  278.  
  279. /*
  280.  * Special Apache error codes. These are basically used
  281.  *  in http_main.c so we can keep track of various errors.
  282.  *
  283.  *   APEXIT_OK:
  284.  *     A normal exit
  285.  *   APEXIT_INIT:
  286.  *     A fatal error arising during the server's init sequence
  287.  *   APEXIT_CHILDINIT:
  288.  *     The child died during it's init sequence
  289.  *   APEXIT_CHILDFATAL:
  290.  *     A fatal error, resulting in the whole server aborting.
  291.  *     If a child exits with this error, the parent process
  292.  *     considers this a server-wide fatal error and aborts.
  293.  *                 
  294.  */
  295. #define APEXIT_OK        0x0
  296. #define APEXIT_INIT        0x2
  297. #define APEXIT_CHILDINIT    0x3
  298. #define APEXIT_CHILDFATAL    0xf
  299.  
  300. /*
  301.  * (Unix, OS/2 only)
  302.  * Interval, in microseconds, between scoreboard maintenance.  During
  303.  * each scoreboard maintenance cycle the parent decides if it needs to
  304.  * spawn a new child (to meet MinSpareServers requirements), or kill off
  305.  * a child (to meet MaxSpareServers requirements).  It will only spawn or
  306.  * kill one child per cycle.  Setting this too low will chew cpu.  The
  307.  * default is probably sufficient for everyone.  But some people may want
  308.  * to raise this on servers which aren't dedicated to httpd and where they
  309.  * don't like the httpd waking up each second to see what's going on.
  310.  */
  311. #ifndef SCOREBOARD_MAINTENANCE_INTERVAL
  312. #define SCOREBOARD_MAINTENANCE_INTERVAL 1000000
  313. #endif
  314.  
  315. /* Number of requests to try to handle in a single process.  If <= 0,
  316.  * the children don't die off.  That's the default here, since I'm still
  317.  * interested in finding and stanching leaks.
  318.  */
  319.  
  320. #ifndef DEFAULT_MAX_REQUESTS_PER_CHILD
  321. #define DEFAULT_MAX_REQUESTS_PER_CHILD 0
  322. #endif
  323.  
  324. #ifndef DEFAULT_THREADS_PER_CHILD
  325. #define DEFAULT_THREADS_PER_CHILD 50
  326. #endif
  327. #ifndef DEFAULT_EXCESS_REQUESTS_PER_CHILD
  328. #define DEFAULT_EXCESS_REQUESTS_PER_CHILD 0
  329. #endif
  330.  
  331. /* The maximum length of the queue of pending connections, as defined
  332.  * by listen(2).  Under some systems, it should be increased if you
  333.  * are experiencing a heavy TCP SYN flood attack.
  334.  *
  335.  * It defaults to 511 instead of 512 because some systems store it 
  336.  * as an 8-bit datatype; 512 truncated to 8-bits is 0, while 511 is 
  337.  * 255 when truncated.
  338.  */
  339.  
  340. #ifndef DEFAULT_LISTENBACKLOG
  341. #define DEFAULT_LISTENBACKLOG 511
  342. #endif
  343.  
  344. /* Limits on the size of various request items.  These limits primarily
  345.  * exist to prevent simple denial-of-service attacks on a server based
  346.  * on misuse of the protocol.  The recommended values will depend on the
  347.  * nature of the server resources -- CGI scripts and database backends
  348.  * might require large values, but most servers could get by with much
  349.  * smaller limits than we use below.  The request message body size can
  350.  * be limited by the per-dir config directive LimitRequestBody.
  351.  *
  352.  * Internal buffer sizes are two bytes more than the DEFAULT_LIMIT_REQUEST_LINE
  353.  * and DEFAULT_LIMIT_REQUEST_FIELDSIZE below, which explains the 8190.
  354.  * These two limits can be lowered (but not raised) by the server config
  355.  * directives LimitRequestLine and LimitRequestFieldsize, respectively.
  356.  *
  357.  * DEFAULT_LIMIT_REQUEST_FIELDS can be modified or disabled (set = 0) by
  358.  * the server config directive LimitRequestFields.
  359.  */
  360. #ifndef DEFAULT_LIMIT_REQUEST_LINE
  361. #define DEFAULT_LIMIT_REQUEST_LINE 8190
  362. #endif /* default limit on bytes in Request-Line (Method+URI+HTTP-version) */
  363. #ifndef DEFAULT_LIMIT_REQUEST_FIELDSIZE
  364. #define DEFAULT_LIMIT_REQUEST_FIELDSIZE 8190
  365. #endif /* default limit on bytes in any one header field  */
  366. #ifndef DEFAULT_LIMIT_REQUEST_FIELDS
  367. #define DEFAULT_LIMIT_REQUEST_FIELDS 100
  368. #endif /* default limit on number of request header fields */
  369.  
  370. /*
  371.  * The default default character set name to add if AddDefaultCharset is 
  372.  * enabled.  Overridden with AddDefaultCharsetName.
  373.  */
  374. #define DEFAULT_ADD_DEFAULT_CHARSET_NAME "iso-8859-1"
  375.  
  376. /*
  377.  * The below defines the base string of the Server: header. Additional
  378.  * tokens can be added via the ap_add_version_component() API call.
  379.  *
  380.  * The tokens are listed in order of their significance for identifying the
  381.  * application.
  382.  *
  383.  * "Product tokens should be short and to the point -- use of them for 
  384.  * advertizing or other non-essential information is explicitly forbidden."
  385.  *
  386.  * Example: "Apache/1.1.0 MrWidget/0.1-alpha" 
  387.  */
  388.  
  389. #define SERVER_BASEVENDOR   "Apache Group"
  390. #define SERVER_BASEPRODUCT  "Apache"
  391. #define SERVER_BASEREVISION "1.3.31"
  392. #define SERVER_BASEVERSION  SERVER_BASEPRODUCT "/" SERVER_BASEREVISION
  393.  
  394. #define SERVER_PRODUCT  SERVER_BASEPRODUCT
  395. #define SERVER_REVISION SERVER_BASEREVISION
  396. #define SERVER_VERSION  SERVER_PRODUCT "/" SERVER_REVISION
  397. enum server_token_type {
  398.     SrvTk_MIN,        /* eg: Apache/1.3.0 */
  399.     SrvTk_OS,        /* eg: Apache/1.3.0 (UNIX) */
  400.     SrvTk_FULL,        /* eg: Apache/1.3.0 (UNIX) PHP/3.0 FooBar/1.2b */
  401.     SrvTk_PRODUCT_ONLY    /* eg: Apache */
  402. };
  403.  
  404. API_EXPORT(const char *) ap_get_server_version(void);
  405. API_EXPORT(void) ap_add_version_component(const char *component);
  406. API_EXPORT(const char *) ap_get_server_built(void);
  407.  
  408. /* Numeric release version identifier: MMNNFFRBB: major minor fix final beta
  409.  * Always increases along the same track as the source branch.
  410.  * For example, Apache 1.4.2 would be '10402100', 2.5b7 would be '20500007'.
  411.  */
  412. #define APACHE_RELEASE 10331100
  413.  
  414. #define SERVER_PROTOCOL "HTTP/1.1"
  415. #ifndef SERVER_SUPPORT
  416. #define SERVER_SUPPORT "http://www.apache.org/"
  417. #endif
  418.  
  419. #define DECLINED -1        /* Module declines to handle */
  420. #define DONE -2            /* Module has served the response completely 
  421.                  *  - it's safe to die() with no more output
  422.                  */
  423. #define OK 0            /* Module has handled this stage. */
  424.  
  425.  
  426. /* ----------------------- HTTP Status Codes  ------------------------- */
  427.  
  428. /* The size of the static array in http_protocol.c for storing
  429.  * all of the potential response status-lines (a sparse table).
  430.  * A future version should dynamically generate the table at startup.
  431.  */
  432. #define RESPONSE_CODES 55
  433.  
  434. #define HTTP_CONTINUE                      100
  435. #define HTTP_SWITCHING_PROTOCOLS           101
  436. #define HTTP_PROCESSING                    102
  437. #define HTTP_OK                            200
  438. #define HTTP_CREATED                       201
  439. #define HTTP_ACCEPTED                      202
  440. #define HTTP_NON_AUTHORITATIVE             203
  441. #define HTTP_NO_CONTENT                    204
  442. #define HTTP_RESET_CONTENT                 205
  443. #define HTTP_PARTIAL_CONTENT               206
  444. #define HTTP_MULTI_STATUS                  207
  445. #define HTTP_MULTIPLE_CHOICES              300
  446. #define HTTP_MOVED_PERMANENTLY             301
  447. #define HTTP_MOVED_TEMPORARILY             302
  448. #define HTTP_SEE_OTHER                     303
  449. #define HTTP_NOT_MODIFIED                  304
  450. #define HTTP_USE_PROXY                     305
  451. #define HTTP_TEMPORARY_REDIRECT            307
  452. #define HTTP_BAD_REQUEST                   400
  453. #define HTTP_UNAUTHORIZED                  401
  454. #define HTTP_PAYMENT_REQUIRED              402
  455. #define HTTP_FORBIDDEN                     403
  456. #define HTTP_NOT_FOUND                     404
  457. #define HTTP_METHOD_NOT_ALLOWED            405
  458. #define HTTP_NOT_ACCEPTABLE                406
  459. #define HTTP_PROXY_AUTHENTICATION_REQUIRED 407
  460. #define HTTP_REQUEST_TIME_OUT              408
  461. #define HTTP_CONFLICT                      409
  462. #define HTTP_GONE                          410
  463. #define HTTP_LENGTH_REQUIRED               411
  464. #define HTTP_PRECONDITION_FAILED           412
  465. #define HTTP_REQUEST_ENTITY_TOO_LARGE      413
  466. #define HTTP_REQUEST_URI_TOO_LARGE         414
  467. #define HTTP_UNSUPPORTED_MEDIA_TYPE        415
  468. #define HTTP_RANGE_NOT_SATISFIABLE         416
  469. #define HTTP_EXPECTATION_FAILED            417
  470. #define HTTP_UNPROCESSABLE_ENTITY          422
  471. #define HTTP_LOCKED                        423
  472. #define HTTP_FAILED_DEPENDENCY             424
  473. #define HTTP_INTERNAL_SERVER_ERROR         500
  474. #define HTTP_NOT_IMPLEMENTED               501
  475. #define HTTP_BAD_GATEWAY                   502
  476. #define HTTP_SERVICE_UNAVAILABLE           503
  477. #define HTTP_GATEWAY_TIME_OUT              504
  478. #define HTTP_VERSION_NOT_SUPPORTED         505
  479. #define HTTP_VARIANT_ALSO_VARIES           506
  480. #define HTTP_INSUFFICIENT_STORAGE          507
  481. #define HTTP_NOT_EXTENDED                  510
  482.  
  483. #define DOCUMENT_FOLLOWS    HTTP_OK
  484. #define PARTIAL_CONTENT     HTTP_PARTIAL_CONTENT
  485. #define MULTIPLE_CHOICES    HTTP_MULTIPLE_CHOICES
  486. #define MOVED               HTTP_MOVED_PERMANENTLY
  487. #define REDIRECT            HTTP_MOVED_TEMPORARILY
  488. #define USE_LOCAL_COPY      HTTP_NOT_MODIFIED
  489. #define BAD_REQUEST         HTTP_BAD_REQUEST
  490. #define AUTH_REQUIRED       HTTP_UNAUTHORIZED
  491. #define FORBIDDEN           HTTP_FORBIDDEN
  492. #define NOT_FOUND           HTTP_NOT_FOUND
  493. #define METHOD_NOT_ALLOWED  HTTP_METHOD_NOT_ALLOWED
  494. #define NOT_ACCEPTABLE      HTTP_NOT_ACCEPTABLE
  495. #define LENGTH_REQUIRED     HTTP_LENGTH_REQUIRED
  496. #define PRECONDITION_FAILED HTTP_PRECONDITION_FAILED
  497. #define SERVER_ERROR        HTTP_INTERNAL_SERVER_ERROR
  498. #define NOT_IMPLEMENTED     HTTP_NOT_IMPLEMENTED
  499. #define BAD_GATEWAY         HTTP_BAD_GATEWAY
  500. #define VARIANT_ALSO_VARIES HTTP_VARIANT_ALSO_VARIES
  501.  
  502. #define ap_is_HTTP_INFO(x)         (((x) >= 100)&&((x) < 200))
  503. #define ap_is_HTTP_SUCCESS(x)      (((x) >= 200)&&((x) < 300))
  504. #define ap_is_HTTP_REDIRECT(x)     (((x) >= 300)&&((x) < 400))
  505. #define ap_is_HTTP_ERROR(x)        (((x) >= 400)&&((x) < 600))
  506. #define ap_is_HTTP_CLIENT_ERROR(x) (((x) >= 400)&&((x) < 500))
  507. #define ap_is_HTTP_SERVER_ERROR(x) (((x) >= 500)&&((x) < 600))
  508.  
  509. #define ap_status_drops_connection(x) \
  510.                                    (((x) == HTTP_BAD_REQUEST)           || \
  511.                                     ((x) == HTTP_REQUEST_TIME_OUT)      || \
  512.                                     ((x) == HTTP_LENGTH_REQUIRED)       || \
  513.                                     ((x) == HTTP_REQUEST_ENTITY_TOO_LARGE) || \
  514.                                     ((x) == HTTP_REQUEST_URI_TOO_LARGE) || \
  515.                                     ((x) == HTTP_INTERNAL_SERVER_ERROR) || \
  516.                                     ((x) == HTTP_SERVICE_UNAVAILABLE) || \
  517.                     ((x) == HTTP_NOT_IMPLEMENTED))
  518.  
  519. /* Methods recognized (but not necessarily handled) by the server.
  520.  * These constants are used in bit shifting masks of size int, so it is
  521.  * unsafe to have more methods than bits in an int.  HEAD == M_GET.
  522.  */
  523. #define M_GET        0
  524. #define M_PUT        1
  525. #define M_POST       2
  526. #define M_DELETE     3
  527. #define M_CONNECT    4
  528. #define M_OPTIONS    5
  529. #define M_TRACE      6
  530. #define M_PATCH      7
  531. #define M_PROPFIND   8
  532. #define M_PROPPATCH  9
  533. #define M_MKCOL     10
  534. #define M_COPY      11
  535. #define M_MOVE      12
  536. #define M_LOCK      13
  537. #define M_UNLOCK    14
  538. #define M_INVALID   15
  539.  
  540. #define METHODS     16
  541.  
  542. #define CGI_MAGIC_TYPE "application/x-httpd-cgi"
  543. #define INCLUDES_MAGIC_TYPE "text/x-server-parsed-html"
  544. #define INCLUDES_MAGIC_TYPE3 "text/x-server-parsed-html3"
  545. #ifdef CHARSET_EBCDIC
  546. #define ASCIITEXT_MAGIC_TYPE_PREFIX "text/x-ascii-" /* Text files whose content-type starts with this are passed thru unconverted */
  547. #endif /*CHARSET_EBCDIC*/
  548. #define MAP_FILE_MAGIC_TYPE "application/x-type-map"
  549. #define ASIS_MAGIC_TYPE "httpd/send-as-is"
  550. #define DIR_MAGIC_TYPE "httpd/unix-directory"
  551. #define STATUS_MAGIC_TYPE "application/x-httpd-status"
  552.  
  553. /*
  554.  * Define the HTML doctype strings centrally.
  555.  */
  556. #define DOCTYPE_HTML_2_0  "<!DOCTYPE HTML PUBLIC \"-//IETF//" \
  557.                           "DTD HTML 2.0//EN\">\n"
  558. #define DOCTYPE_HTML_3_2  "<!DOCTYPE HTML PUBLIC \"-//W3C//" \
  559.                           "DTD HTML 3.2 Final//EN\">\n"
  560. #define DOCTYPE_HTML_4_0S "<!DOCTYPE HTML PUBLIC \"-//W3C//" \
  561.                           "DTD HTML 4.0//EN\"\n" \
  562.                           "\"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
  563. #define DOCTYPE_HTML_4_0T "<!DOCTYPE HTML PUBLIC \"-//W3C//" \
  564.                           "DTD HTML 4.0 Transitional//EN\"\n" \
  565.                           "\"http://www.w3.org/TR/REC-html40/loose.dtd\">\n"
  566. #define DOCTYPE_HTML_4_0F "<!DOCTYPE HTML PUBLIC \"-//W3C//" \
  567.                           "DTD HTML 4.0 Frameset//EN\"\n" \
  568.                           "\"http://www.w3.org/TR/REC-html40/frameset.dtd\">\n"
  569.  
  570. /* Just in case your linefeed isn't the one the other end is expecting. */
  571. #ifndef CHARSET_EBCDIC
  572. #define LF 10
  573. #define CR 13
  574. #define CRLF "\015\012"
  575. #define OS_ASC(c) (c)
  576. #else /* CHARSET_EBCDIC */
  577. #include "ap_ebcdic.h"
  578. /* OSD_POSIX uses the EBCDIC charset. The transition ASCII->EBCDIC is done in
  579.  * the buff package (bread/bputs/bwrite), so everywhere else, we use
  580.  * "native EBCDIC" CR and NL characters. These are therefore defined as
  581.  * '\r' and '\n'.
  582.  * NB: this is not the whole truth - sometimes \015 and \012 are contained
  583.  * in literal (EBCDIC!) strings, so these are not converted but passed.
  584.  */
  585. #define CR '\r'
  586. #define LF '\n'
  587. #define CRLF "\r\n"
  588. #define OS_ASC(c) (os_toascii[c])
  589. #endif /* CHARSET_EBCDIC */
  590.  
  591. /* Possible values for request_rec.read_body (set by handling module):
  592.  *    REQUEST_NO_BODY          Send 413 error if message has any body
  593.  *    REQUEST_CHUNKED_ERROR    Send 411 error if body without Content-Length
  594.  *    REQUEST_CHUNKED_DECHUNK  If chunked, remove the chunks for me.
  595.  *    REQUEST_CHUNKED_PASS     Pass the chunks to me without removal.
  596.  */
  597. #define REQUEST_NO_BODY          0
  598. #define REQUEST_CHUNKED_ERROR    1
  599. #define REQUEST_CHUNKED_DECHUNK  2
  600. #define REQUEST_CHUNKED_PASS     3
  601.  
  602. /* Things which may vary per file-lookup WITHIN a request ---
  603.  * e.g., state of MIME config.  Basically, the name of an object, info
  604.  * about the object, and any other info we may ahve which may need to
  605.  * change as we go poking around looking for it (e.g., overridden by
  606.  * .htaccess files).
  607.  *
  608.  * Note how the default state of almost all these things is properly
  609.  * zero, so that allocating it with pcalloc does the right thing without
  610.  * a whole lot of hairy initialization... so long as we are willing to
  611.  * make the (fairly) portable assumption that the bit pattern of a NULL
  612.  * pointer is, in fact, zero.
  613.  */
  614.  
  615. /* This represents the result of calling htaccess; these are cached for
  616.  * each request.
  617.  */
  618. struct htaccess_result {
  619.     char *dir;            /* the directory to which this applies */
  620.     int override;        /* the overrides allowed for the .htaccess file */
  621.     void *htaccess;        /* the configuration directives */
  622. /* the next one, or NULL if no more; N.B. never change this */
  623.     const struct htaccess_result *next;
  624. };
  625.  
  626. typedef struct conn_rec conn_rec;
  627. typedef struct server_rec server_rec;
  628. typedef struct request_rec request_rec;
  629. typedef struct listen_rec listen_rec;
  630.  
  631. #include "util_uri.h"
  632.  
  633. enum proxyreqtype {
  634.     NOT_PROXY=0,
  635.     STD_PROXY,
  636.     PROXY_PASS
  637. };
  638.  
  639. struct request_rec {
  640.  
  641.     ap_pool *pool;
  642.     conn_rec *connection;
  643.     server_rec *server;
  644.  
  645.     request_rec *next;        /* If we wind up getting redirected,
  646.                  * pointer to the request we redirected to.
  647.                  */
  648.     request_rec *prev;        /* If this is an internal redirect,
  649.                  * pointer to where we redirected *from*.
  650.                  */
  651.  
  652.     request_rec *main;        /* If this is a sub_request (see request.h) 
  653.                  * pointer back to the main request.
  654.                  */
  655.  
  656.     /* Info about the request itself... we begin with stuff that only
  657.      * protocol.c should ever touch...
  658.      */
  659.  
  660.     char *the_request;        /* First line of request, so we can log it */
  661.     int assbackwards;        /* HTTP/0.9, "simple" request */
  662.     enum proxyreqtype proxyreq;/* A proxy request (calculated during
  663.                  * post_read_request or translate_name) */
  664.     int header_only;        /* HEAD request, as opposed to GET */
  665.     char *protocol;        /* Protocol, as given to us, or HTTP/0.9 */
  666.     int proto_num;        /* Number version of protocol; 1.1 = 1001 */
  667.     const char *hostname;    /* Host, as set by full URI or Host: */
  668.  
  669.     time_t request_time;    /* When the request started */
  670.  
  671.     const char *status_line;    /* Status line, if set by script */
  672.     int status;            /* In any case */
  673.  
  674.     /* Request method, two ways; also, protocol, etc..  Outside of protocol.c,
  675.      * look, but don't touch.
  676.      */
  677.  
  678.     const char *method;        /* GET, HEAD, POST, etc. */
  679.     int method_number;        /* M_GET, M_POST, etc. */
  680.  
  681.     /*
  682.     allowed is a bitvector of the allowed methods.
  683.  
  684.     A handler must ensure that the request method is one that
  685.     it is capable of handling.  Generally modules should DECLINE
  686.     any request methods they do not handle.  Prior to aborting the
  687.     handler like this the handler should set r->allowed to the list
  688.     of methods that it is willing to handle.  This bitvector is used
  689.     to construct the "Allow:" header required for OPTIONS requests,
  690.     and METHOD_NOT_ALLOWED and NOT_IMPLEMENTED status codes.
  691.  
  692.     Since the default_handler deals with OPTIONS, all modules can
  693.     usually decline to deal with OPTIONS.  TRACE is always allowed,
  694.     modules don't need to set it explicitly.
  695.  
  696.     Since the default_handler will always handle a GET, a
  697.     module which does *not* implement GET should probably return
  698.     METHOD_NOT_ALLOWED.  Unfortunately this means that a Script GET
  699.     handler can't be installed by mod_actions.
  700.     */
  701.     int allowed;        /* Allowed methods - for 405, OPTIONS, etc */
  702.  
  703.     int sent_bodyct;        /* byte count in stream is for body */
  704.     long bytes_sent;        /* body byte count, for easy access */
  705.     time_t mtime;        /* Time the resource was last modified */
  706.  
  707.     /* HTTP/1.1 connection-level features */
  708.  
  709.     int chunked;        /* sending chunked transfer-coding */
  710.     int byterange;        /* number of byte ranges */
  711.     char *boundary;        /* multipart/byteranges boundary */
  712.     const char *range;        /* The Range: header */
  713.     long clength;        /* The "real" content length */
  714.  
  715.     long remaining;        /* bytes left to read */
  716.     long read_length;        /* bytes that have been read */
  717.     int read_body;        /* how the request body should be read */
  718.     int read_chunked;        /* reading chunked transfer-coding */
  719.     unsigned expecting_100;    /* is client waiting for a 100 response? */
  720.  
  721.     /* MIME header environments, in and out.  Also, an array containing
  722.      * environment variables to be passed to subprocesses, so people can
  723.      * write modules to add to that environment.
  724.      *
  725.      * The difference between headers_out and err_headers_out is that the
  726.      * latter are printed even on error, and persist across internal redirects
  727.      * (so the headers printed for ErrorDocument handlers will have them).
  728.      *
  729.      * The 'notes' table is for notes from one module to another, with no
  730.      * other set purpose in mind...
  731.      */
  732.  
  733.     table *headers_in;
  734.     table *headers_out;
  735.     table *err_headers_out;
  736.     table *subprocess_env;
  737.     table *notes;
  738.  
  739.     /* content_type, handler, content_encoding, content_language, and all
  740.      * content_languages MUST be lowercased strings.  They may be pointers
  741.      * to static strings; they should not be modified in place.
  742.      */
  743.     const char *content_type;    /* Break these out --- we dispatch on 'em */
  744.     const char *handler;    /* What we *really* dispatch on           */
  745.  
  746.     const char *content_encoding;
  747.     const char *content_language;    /* for back-compat. only -- do not use */
  748.     array_header *content_languages;    /* array of (char*) */
  749.  
  750.     char *vlist_validator;      /* variant list validator (if negotiated) */
  751.  
  752.     int no_cache;
  753.     int no_local_copy;
  754.  
  755.     /* What object is being requested (either directly, or via include
  756.      * or content-negotiation mapping).
  757.      */
  758.  
  759.     char *unparsed_uri;        /* the uri without any parsing performed */
  760.     char *uri;            /* the path portion of the URI */
  761.     char *filename;        /* filename if found, otherwise NULL */
  762.     char *path_info;
  763.     char *args;            /* QUERY_ARGS, if any */
  764.     struct stat finfo;        /* ST_MODE set to zero if no such file */
  765.     uri_components parsed_uri;    /* components of uri, dismantled */
  766.  
  767.     /* Various other config info which may change with .htaccess files
  768.      * These are config vectors, with one void* pointer for each module
  769.      * (the thing pointed to being the module's business).
  770.      */
  771.  
  772.     void *per_dir_config;    /* Options set in config files, etc. */
  773.     void *request_config;    /* Notes on *this* request */
  774.  
  775. /*
  776.  * a linked list of the configuration directives in the .htaccess files
  777.  * accessed by this request.
  778.  * N.B. always add to the head of the list, _never_ to the end.
  779.  * that way, a sub request's list can (temporarily) point to a parent's list
  780.  */
  781.     const struct htaccess_result *htaccess;
  782.  
  783.     /* On systems with case insensitive file systems (Windows, OS/2, etc.), 
  784.      * r->filename is case canonicalized (folded to either lower or upper 
  785.      * case, depending on the specific system) to accomodate file access
  786.      * checking. case_preserved_filename is the same as r->filename 
  787.      * except case is preserved. There is at least one instance where Apache 
  788.      * needs access to the case preserved filename: Java class files published 
  789.      * with WebDAV need to preserve filename case to make the Java compiler 
  790.      * happy.
  791.      */
  792.     char *case_preserved_filename;
  793.  
  794. #ifdef CHARSET_EBCDIC
  795.     /* We don't want subrequests to modify our current conversion flags.
  796.      * These flags save the state of the conversion flags when subrequests
  797.      * are run.
  798.      */
  799.     struct {
  800.         unsigned conv_in:1;    /* convert ASCII->EBCDIC when read()ing? */
  801.         unsigned conv_out:1;   /* convert EBCDIC->ASCII when write()ing? */
  802.     } ebcdic;
  803. #endif
  804.  
  805. /* Things placed at the end of the record to avoid breaking binary
  806.  * compatibility.  It would be nice to remember to reorder the entire
  807.  * record to improve 64bit alignment the next time we need to break
  808.  * binary compatibility for some other reason.
  809.  */
  810. };
  811.  
  812.  
  813. /* Things which are per connection
  814.  */
  815.  
  816. struct conn_rec {
  817.  
  818.     ap_pool *pool;
  819.     server_rec *server;
  820.     server_rec *base_server;    /* Physical vhost this conn come in on */
  821.     void *vhost_lookup_data;    /* used by http_vhost.c */
  822.  
  823.     /* Information about the connection itself */
  824.  
  825.     int child_num;        /* The number of the child handling conn_rec */
  826.     BUFF *client;        /* Connection to the guy */
  827.  
  828.     /* Who is the client? */
  829.  
  830.     struct sockaddr_in local_addr;    /* local address */
  831.     struct sockaddr_in remote_addr;    /* remote address */
  832.     char *remote_ip;        /* Client's IP address */
  833.     char *remote_host;        /* Client's DNS name, if known.
  834.                  * NULL if DNS hasn't been checked,
  835.                  * "" if it has and no address was found.
  836.                  * N.B. Only access this though
  837.                  * get_remote_host() */
  838.     char *remote_logname;    /* Only ever set if doing rfc1413 lookups.
  839.                  * N.B. Only access this through
  840.                  * get_remote_logname() */
  841.     char *user;            /* If an authentication check was made,
  842.                  * this gets set to the user name.  We assume
  843.                  * that there's only one user per connection(!)
  844.                  */
  845.     char *ap_auth_type;        /* Ditto. */
  846.  
  847.     unsigned aborted:1;        /* Are we still talking? */
  848.     signed int keepalive:2;    /* Are we using HTTP Keep-Alive?
  849.                  * -1 fatal error, 0 undecided, 1 yes */
  850.     unsigned keptalive:1;    /* Did we use HTTP Keep-Alive? */
  851.     signed int double_reverse:2;/* have we done double-reverse DNS?
  852.                  * -1 yes/failure, 0 not yet, 1 yes/success */
  853.     int keepalives;        /* How many times have we used it? */
  854.     char *local_ip;        /* server IP address */
  855.     char *local_host;        /* used for ap_get_server_name when
  856.                  * UseCanonicalName is set to DNS
  857.                  * (ignores setting of HostnameLookups) */
  858. };
  859.  
  860. /* Per-vhost config... */
  861.  
  862. /* The address 255.255.255.255, when used as a virtualhost address,
  863.  * will become the "default" server when the ip doesn't match other vhosts.
  864.  */
  865. #define DEFAULT_VHOST_ADDR 0xfffffffful
  866.  
  867. typedef struct server_addr_rec server_addr_rec;
  868. struct server_addr_rec {
  869.     server_addr_rec *next;
  870.     struct in_addr host_addr;    /* The bound address, for this server */
  871.     unsigned short host_port;    /* The bound port, for this server */
  872.     char *virthost;        /* The name given in <VirtualHost> */
  873. };
  874.  
  875. struct server_rec {
  876.  
  877.     server_rec *next;
  878.  
  879.     /* description of where the definition came from */
  880.     const char *defn_name;
  881.     unsigned defn_line_number;
  882.  
  883.     /* Full locations of server config info */
  884.  
  885.     char *srm_confname;
  886.     char *access_confname;
  887.  
  888.     /* Contact information */
  889.  
  890.     char *server_admin;
  891.     char *server_hostname;
  892.     unsigned short port;    /* for redirects, etc. */
  893.  
  894.     /* Log files --- note that transfer log is now in the modules... */
  895.  
  896.     char *error_fname;
  897.     FILE *error_log;
  898.     int loglevel;
  899.  
  900.     /* Module-specific configuration for server, and defaults... */
  901.  
  902.     int is_virtual;        /* true if this is the virtual server */
  903.     void *module_config;    /* Config vector containing pointers to
  904.                  * modules' per-server config structures.
  905.                  */
  906.     void *lookup_defaults;    /* MIME type info, etc., before we start
  907.                  * checking per-directory info.
  908.                  */
  909.     /* Transaction handling */
  910.  
  911.     server_addr_rec *addrs;
  912.     int timeout;        /* Timeout, in seconds, before we give up */
  913.     int keep_alive_timeout;    /* Seconds we'll wait for another request */
  914.     int keep_alive_max;        /* Maximum requests per connection */
  915.     int keep_alive;        /* Use persistent connections? */
  916.     int send_buffer_size;    /* size of TCP send buffer (in bytes) */
  917.  
  918.     char *path;            /* Pathname for ServerPath */
  919.     int pathlen;        /* Length of path */
  920.  
  921.     array_header *names;    /* Normal names for ServerAlias servers */
  922.     array_header *wild_names;    /* Wildcarded names for ServerAlias servers */
  923.  
  924.     uid_t server_uid;        /* effective user id when calling exec wrapper */
  925.     gid_t server_gid;        /* effective group id when calling exec wrapper */
  926.  
  927.     int limit_req_line;      /* limit on size of the HTTP request line    */
  928.     int limit_req_fieldsize; /* limit on size of any request header field */
  929.     int limit_req_fields;    /* limit on number of request header fields  */
  930. };
  931.  
  932. /* These are more like real hosts than virtual hosts */
  933. struct listen_rec {
  934.     listen_rec *next;
  935.     struct sockaddr_in local_addr;    /* local IP address and port */
  936.     int fd;
  937.     int used;            /* Only used during restart */        
  938. /* more stuff here, like which protocol is bound to the port */
  939. };
  940.  
  941. /* Prototypes for utilities... util.c.
  942.  */
  943.  
  944. extern void ap_util_init(void);
  945.  
  946. /* Time */
  947. extern API_VAR_EXPORT const char ap_month_snames[12][4];
  948. extern API_VAR_EXPORT const char ap_day_snames[7][4];
  949.  
  950. API_EXPORT(struct tm *) ap_get_gmtoff(int *tz);
  951. API_EXPORT(char *) ap_get_time(void);
  952. API_EXPORT(char *) ap_field_noparam(pool *p, const char *intype);
  953. API_EXPORT(char *) ap_ht_time(pool *p, time_t t, const char *fmt, int gmt);
  954. API_EXPORT(char *) ap_gm_timestr_822(pool *p, time_t t);
  955.  
  956. /* String handling. The *_nc variants allow you to use non-const char **s as
  957.    arguments (unfortunately C won't automatically convert a char ** to a const
  958.    char **) */
  959.  
  960. API_EXPORT(char *) ap_getword(pool *p, const char **line, char stop);
  961. API_EXPORT(char *) ap_getword_nc(pool *p, char **line, char stop);
  962. API_EXPORT(char *) ap_getword_white(pool *p, const char **line);
  963. API_EXPORT(char *) ap_getword_white_nc(pool *p, char **line);
  964. API_EXPORT(char *) ap_getword_nulls(pool *p, const char **line, char stop);
  965. API_EXPORT(char *) ap_getword_nulls_nc(pool *p, char **line, char stop);
  966. API_EXPORT(char *) ap_getword_conf(pool *p, const char **line);
  967. API_EXPORT(char *) ap_getword_conf_nc(pool *p, char **line);
  968.  
  969. API_EXPORT(const char *) ap_size_list_item(const char **field, int *len);
  970. API_EXPORT(char *) ap_get_list_item(pool *p, const char **field);
  971. API_EXPORT(int) ap_find_list_item(pool *p, const char *line, const char *tok);
  972.  
  973. API_EXPORT(char *) ap_get_token(pool *p, const char **accept_line, int accept_white);
  974. API_EXPORT(int) ap_find_token(pool *p, const char *line, const char *tok);
  975. API_EXPORT(int) ap_find_last_token(pool *p, const char *line, const char *tok);
  976.  
  977. API_EXPORT(int) ap_is_url(const char *u);
  978. API_EXPORT(int) ap_unescape_url(char *url);
  979. API_EXPORT(void) ap_no2slash(char *name);
  980. API_EXPORT(void) ap_getparents(char *name);
  981. API_EXPORT(char *) ap_escape_path_segment(pool *p, const char *s);
  982. API_EXPORT(char *) ap_os_escape_path(pool *p, const char *path, int partial);
  983. #define ap_escape_uri(ppool,path) ap_os_escape_path(ppool,path,1)
  984. API_EXPORT(char *) ap_escape_html(pool *p, const char *s);
  985. API_EXPORT(char *) ap_construct_server(pool *p, const char *hostname,
  986.                     unsigned port, const request_rec *r);
  987. API_EXPORT(char *) ap_escape_logitem(pool *p, const char *str);
  988. API_EXPORT(size_t) ap_escape_errorlog_item(char *dest, const char *source,
  989.                                            size_t buflen);
  990. API_EXPORT(char *) ap_escape_shell_cmd(pool *p, const char *s);
  991.  
  992. API_EXPORT(int) ap_count_dirs(const char *path);
  993. API_EXPORT(char *) ap_make_dirstr_prefix(char *d, const char *s, int n);
  994. API_EXPORT(char *) ap_make_dirstr_parent(pool *p, const char *s);
  995. /* deprecated.  The previous two routines are preferred. */
  996. API_EXPORT(char *) ap_make_dirstr(pool *a, const char *s, int n);
  997. API_EXPORT(char *) ap_make_full_path(pool *a, const char *dir, const char *f);
  998.  
  999. API_EXPORT(int) ap_is_matchexp(const char *str);
  1000. API_EXPORT(int) ap_strcmp_match(const char *str, const char *exp);
  1001. API_EXPORT(int) ap_strcasecmp_match(const char *str, const char *exp);
  1002. API_EXPORT(char *) ap_stripprefix(const char *bigstring, const char *prefix);
  1003. API_EXPORT(char *) ap_strcasestr(const char *s1, const char *s2);
  1004. API_EXPORT(char *) ap_pbase64decode(pool *p, const char *bufcoded);
  1005. API_EXPORT(char *) ap_pbase64encode(pool *p, char *string); 
  1006. API_EXPORT(char *) ap_uudecode(pool *p, const char *bufcoded);
  1007. API_EXPORT(char *) ap_uuencode(pool *p, char *string); 
  1008.  
  1009. #if defined(OS2) || defined(WIN32)
  1010. API_EXPORT(char *) ap_double_quotes(pool *p, const char *str);
  1011. API_EXPORT(char *) ap_caret_escape_args(pool *p, const char *str);
  1012. #endif
  1013.  
  1014. #ifdef OS2
  1015. void os2pathname(char *path);
  1016. #endif
  1017.  
  1018. API_EXPORT(int)    ap_regexec(const regex_t *preg, const char *string,
  1019.                               size_t nmatch, regmatch_t pmatch[], int eflags);
  1020. API_EXPORT(size_t) ap_regerror(int errcode, const regex_t *preg, 
  1021.                                char *errbuf, size_t errbuf_size);
  1022. API_EXPORT(char *) ap_pregsub(pool *p, const char *input, const char *source,
  1023.                               size_t nmatch, regmatch_t pmatch[]);
  1024.  
  1025. API_EXPORT(void) ap_content_type_tolower(char *);
  1026. API_EXPORT(void) ap_str_tolower(char *);
  1027. API_EXPORT(int) ap_ind(const char *, char);    /* Sigh... */
  1028. API_EXPORT(int) ap_rind(const char *, char);
  1029.  
  1030. API_EXPORT(char *) ap_escape_quotes (pool *p, const char *instring);
  1031. API_EXPORT(void) ap_remove_spaces(char *dest, char *src);
  1032.  
  1033. /* Common structure for reading of config files / passwd files etc. */
  1034. typedef struct {
  1035.     int (*getch) (void *param);    /* a getc()-like function */
  1036.     void *(*getstr) (void *buf, size_t bufsiz, void *param); /* a fgets()-like function */
  1037.     int (*close) (void *param);    /* a close hander function */
  1038.     void *param;        /* the argument passed to getch/getstr/close */
  1039.     const char *name;        /* the filename / description */
  1040.     unsigned line_number;    /* current line number, starting at 1 */
  1041. } configfile_t;
  1042.  
  1043. /* Open a configfile_t as FILE, return open configfile_t struct pointer */
  1044. API_EXPORT(configfile_t *) ap_pcfg_openfile(pool *p, const char *name);
  1045.  
  1046. /* Allocate a configfile_t handle with user defined functions and params */
  1047. API_EXPORT(configfile_t *) ap_pcfg_open_custom(pool *p, const char *descr,
  1048.     void *param,
  1049.     int(*getc_func)(void*),
  1050.     void *(*gets_func) (void *buf, size_t bufsiz, void *param),
  1051.     int(*close_func)(void *param));
  1052.  
  1053. /* Read one line from open configfile_t, strip LF, increase line number */
  1054. API_EXPORT(int) ap_cfg_getline(char *buf, size_t bufsize, configfile_t *cfp);
  1055.  
  1056. /* Read one char from open configfile_t, increase line number upon LF */
  1057. API_EXPORT(int) ap_cfg_getc(configfile_t *cfp);
  1058.  
  1059. /* Detach from open configfile_t, calling the close handler */
  1060. API_EXPORT(int) ap_cfg_closefile(configfile_t *cfp);
  1061.  
  1062. #ifdef NEED_STRERROR
  1063. char *strerror(int err);
  1064. #endif
  1065.  
  1066. /* Misc system hackery */
  1067.  
  1068. API_EXPORT(uid_t) ap_uname2id(const char *name);
  1069. API_EXPORT(gid_t) ap_gname2id(const char *name);
  1070. API_EXPORT(int) ap_is_directory(const char *name);
  1071. API_EXPORT(int) ap_is_rdirectory(const char *name);
  1072. API_EXPORT(int) ap_can_exec(const struct stat *);
  1073. API_EXPORT(void) ap_chdir_file(const char *file);
  1074.  
  1075. #ifndef HAVE_CANONICAL_FILENAME
  1076. /*
  1077.  *  We can't define these in os.h because of dependence on pool pointer.
  1078.  */
  1079. #define ap_os_canonical_filename(p,f)  (f)
  1080. #define ap_os_case_canonical_filename(p,f)  (f)
  1081. #define ap_os_systemcase_filename(p,f)  (f)
  1082. #else
  1083. API_EXPORT(char *) ap_os_canonical_filename(pool *p, const char *file);
  1084. #ifdef WIN32
  1085. API_EXPORT(char *) ap_os_case_canonical_filename(pool *pPool, const char *szFile);
  1086. API_EXPORT(char *) ap_os_systemcase_filename(pool *pPool, const char *szFile);
  1087. #elif defined(OS2)
  1088. API_EXPORT(char *) ap_os_case_canonical_filename(pool *pPool, const char *szFile);
  1089. API_EXPORT(char *) ap_os_systemcase_filename(pool *pPool, const char *szFile);
  1090. #elif defined(NETWARE)
  1091. API_EXPORT(char *) ap_os_case_canonical_filename(pool *pPool, const char *szFile);
  1092. #define ap_os_systemcase_filename(p,f) ap_os_case_canonical_filename(p,f)
  1093. #else
  1094. #define ap_os_case_canonical_filename(p,f) ap_os_canonical_filename(p,f)
  1095. #define ap_os_systemcase_filename(p,f) ap_os_canonical_filename(p,f)
  1096. #endif
  1097. #endif
  1098.  
  1099. #ifdef CHARSET_EBCDIC
  1100. API_EXPORT(int)    ap_checkconv(struct request_rec *r);    /* for downloads */
  1101. API_EXPORT(int)    ap_checkconv_in(struct request_rec *r); /* for uploads */
  1102. #endif /*#ifdef CHARSET_EBCDIC*/
  1103.  
  1104. API_EXPORT(char *) ap_get_local_host(pool *);
  1105. API_EXPORT(unsigned long) ap_get_virthost_addr(char *hostname, unsigned short *port);
  1106.  
  1107. extern API_VAR_EXPORT time_t ap_restart_time;
  1108.  
  1109. /*
  1110.  * Apache tries to keep all of its long term filehandles (such as log files,
  1111.  * and sockets) above this number.  This is to workaround problems in many
  1112.  * third party libraries that are compiled with a small FD_SETSIZE.  There
  1113.  * should be no reason to lower this, because it's only advisory.  If a file
  1114.  * can't be allocated above this number then it will remain in the "slack"
  1115.  * area.
  1116.  *
  1117.  * Only the low slack line is used by default.  If HIGH_SLACK_LINE is defined
  1118.  * then an attempt is also made to keep all non-FILE * files above the high
  1119.  * slack line.  This is to work around a Solaris C library limitation, where it
  1120.  * uses an unsigned char to store the file descriptor.
  1121.  */
  1122. #ifndef LOW_SLACK_LINE
  1123. #define LOW_SLACK_LINE    15
  1124. #endif
  1125. /* #define HIGH_SLACK_LINE      255 */
  1126.  
  1127. /*
  1128.  * The ap_slack() function takes a fd, and tries to move it above the indicated
  1129.  * line.  It returns an fd which may or may not have moved above the line, and
  1130.  * never fails.  If the high line was requested and it fails it will also try
  1131.  * the low line.
  1132.  */
  1133. #ifdef NO_SLACK
  1134. #define ap_slack(fd,line)   (fd)
  1135. #else
  1136. int ap_slack(int fd, int line);
  1137. #define AP_SLACK_LOW    1
  1138. #define AP_SLACK_HIGH    2
  1139. #endif
  1140.  
  1141. API_EXPORT(char *) ap_escape_quotes(pool *p, const char *instr);
  1142.  
  1143. /*
  1144.  * Redefine assert() to something more useful for an Apache...
  1145.  */
  1146. API_EXPORT(void) ap_log_assert(const char *szExp, const char *szFile, int nLine)
  1147.                 __attribute__((noreturn));
  1148. #define ap_assert(exp) ((exp) ? (void)0 : ap_log_assert(#exp,__FILE__,__LINE__))
  1149.  
  1150. /* The optimized timeout code only works if we're not MULTITHREAD and we're
  1151.  * also not using a scoreboard file
  1152.  */
  1153. #if !defined (MULTITHREAD) && \
  1154.     (defined (USE_MMAP_SCOREBOARD) || defined (USE_SHMGET_SCOREBOARD))
  1155. #define OPTIMIZE_TIMEOUTS
  1156. #endif
  1157.  
  1158. /* A set of flags which indicate places where the server should raise(SIGSTOP).
  1159.  * This is useful for debugging, because you can then attach to that process
  1160.  * with gdb and continue.  This is important in cases where one_process
  1161.  * debugging isn't possible.
  1162.  */
  1163. #define SIGSTOP_DETACH            1
  1164. #define SIGSTOP_MAKE_CHILD        2
  1165. #define SIGSTOP_SPAWN_CHILD        4
  1166. #define SIGSTOP_PIPED_LOG_SPAWN        8
  1167. #define SIGSTOP_CGI_CHILD        16
  1168.  
  1169. #ifdef DEBUG_SIGSTOP
  1170. extern int raise_sigstop_flags;
  1171. #define RAISE_SIGSTOP(x)    do { \
  1172.     if (raise_sigstop_flags & SIGSTOP_##x) raise(SIGSTOP);\
  1173.     } while (0)
  1174. #else
  1175. #define RAISE_SIGSTOP(x)
  1176. #endif
  1177.  
  1178. API_EXPORT(extern const char *) ap_psignature(const char *prefix, request_rec *r);
  1179.  
  1180. /* strtoul does not exist on sunos4. */
  1181. #ifdef strtoul
  1182. #undef strtoul
  1183. #endif
  1184. #define strtoul strtoul_is_not_a_portable_function_use_strtol_instead
  1185.  
  1186. #ifdef AP_ENABLE_EXCEPTION_HOOK
  1187. /* The exception hook allows a module to run from the server's signal
  1188.  * handler, and perform tasks such as logging the current request or
  1189.  * getting a backtrace or performing other diagnostic functions.  All
  1190.  * operating system requirements for running in a signal handler must
  1191.  * be respected, or the process may not exit properly.
  1192.  *
  1193.  * AP_ENABLE_EXCEPTION_HOOK is already defined for platforms that have
  1194.  * been tested.  It likely will work on other platforms.  In order to
  1195.  * test, define AP_ENABLE_EXCEPTION_HOOK at configure time.
  1196.  */
  1197. typedef struct ap_exception_info_t {
  1198.     int sig;
  1199.     pid_t pid;
  1200. } ap_exception_info_t;
  1201.  
  1202. /* Register a function to be called after a fatal exception (on *X systems, a
  1203.  * "synchronous signal" such as SIGSEGV, SIGILL, etc.).
  1204.  *
  1205.  * Returns 0 on success, non-zero on failure.
  1206.  * If EnableExceptionHook directive is not set to "on", this function will
  1207.  * report failure and no such hooks will be called.
  1208.  */
  1209. API_EXPORT(extern int) ap_add_fatal_exception_hook(void (*fn)(ap_exception_info_t *));
  1210. #endif /* AP_ENABLE_EXCEPTION_HOOK */
  1211.  
  1212. #ifdef __cplusplus
  1213. }
  1214. #endif
  1215.  
  1216. #endif    /* !APACHE_HTTPD_H */
  1217.